home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / T U R B O Language / Turbo C Tools v6.0 / EXAMPLES / SHOWHELP.TXT < prev    next >
Encoding:
Text File  |  1989-03-31  |  2.2 KB  |  60 lines

  1. .* Showhelp.txt -- sample help source file for Turbo C TOOLS/2.0
  2. .* Version 6.00 (C)Copyright Blaise Computing Inc. 1989
  3. .*
  4. .id sample
  5. .forecolor white
  6. .backcolor blue
  7. .borderfore white
  8. .borderback blue
  9. .bordertype 15
  10.  
  11.  The Turbo C TOOLS help facilities provide a flexible yet
  12.  easy to use set of routines for displaying help messages.
  13.  
  14.  Here is a list of keystrokes and their actions:
  15.  
  16.  Keystroke          Action
  17.  ---------          ------
  18.  Left arrow         Scroll text right one character.
  19.  Right arrow        Scroll text left one character.
  20.  Up arrow           Scroll text down one character.
  21.  Down arrow         Scroll text up one character.
  22.  C/Left arrow       Page left.
  23.  C/Right arrow      Page right.
  24.  PgUp               Page up.
  25.  PgDn               Page Down.
  26.  C/Home             Jump to left edge of text.
  27.  C/End              Jump to right edge of text.
  28.  Home               Jump to top edge of text.
  29.  End                Jump to bottom edge of text.
  30.  Esc                Abort read.
  31.  Enter              Finish read.
  32.  
  33.  Note that the help facilities support the extended
  34.  keyboard; the keys on the extended keypad are defined so
  35.  that they have the same actions as their standard
  36.  counterparts.  Thus, the gray PgUp key performs the same
  37.  action as the PgUp key on the numeric keypad.
  38.  
  39.  The help facilities also support the mouse if one is
  40.  present and not specifically disabled.  If the help
  41.  window's data area is larger than the viewport, scroll
  42.  arrows will appear on the bottom and/or right edges of the
  43.  viewport's border.  Left and right arrows will appear on
  44.  the bottom if the data area is too wide to fit in the
  45.  viewport; up and down arrows will appear on the right if
  46.  it is too tall.  Clicking the mouse on these arrows will
  47.  cause the help text to be moved, in the following manner:
  48.  
  49.  Type of click          Type of movement
  50.  -------------          ----------------
  51.  Single left click      Single character.
  52.  Left button held down  Continuous scrolling.
  53.  Single right click     Move one page.
  54.  Double left click      Move to edge.
  55.  
  56.  Thus, a single left click on the left arrow moves the text
  57.  right one character; a double left click on the left arrow
  58.  moves it to the left edge.
  59.  
  60.